home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / HyperCuber Source / HyperCuber 2.0 Source.sit / HyperCuber 2.0 Source / Mouse.h < prev    next >
Text File  |  1994-04-06  |  517b  |  28 lines

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| Mouses.h
  3. //|
  4. //| This contains header information relating to the use
  5. //| of mouse controls in HyperCuber.
  6. //|_________________________________________________________
  7.  
  8. #pragma once
  9.  
  10. CLASS CControlsDirector;
  11.  
  12. typedef struct
  13.     {
  14.     char    dimension;
  15.     char    angle;
  16.     Boolean    horiz;
  17.     char    multiplier;
  18.     short    modifiers;
  19.     } mouse_control_struct;
  20.  
  21. typedef struct
  22.     {
  23.     CControlsDirector    *controls_director;
  24.     long                angle;
  25.     char                multiplier;
  26.     } mouse_task_struct;
  27.  
  28.